CP = /bin/cp 

all:
	$(CC) temper232.c -o temper232

install: all
	$(CP) temper232 /usr/bin/

clean:
	/bin/rm -rf temper232
	/bin/rm -rf temper232.o
